home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_01_05 / 1n05048b < prev    next >
Text File  |  1990-09-10  |  166b  |  22 lines

  1.  
  2.  
  3. enum etype {e1, e2, e3};
  4.  
  5. struct  stype
  6.     {
  7.     int a;
  8.     float b;
  9.     };
  10.  
  11. union utype
  12.     {
  13.     long l;
  14.     float f;
  15.     };
  16.  
  17. etype evar;
  18. stype svar;
  19. utype uvar;
  20.  
  21.  
  22.